home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / midi / gfft.lha / gfft-2.03 / source / gfft-2.03-source.lha / errcodes.h < prev    next >
C/C++ Source or Header  |  1996-01-02  |  3KB  |  92 lines

  1. /***************************************************************************
  2.  *          Copyright (C) 1994  Charles P. Peterson                  *
  3.  *         4007 Enchanted Sun, San Antonio, Texas 78244-1254             *
  4.  *              Email: Charles_P_Peterson@fcircus.sat.tx.us                *
  5.  *                                                                         *
  6.  *          This is free software with NO WARRANTY.                  *
  7.  *          See gfft.c, or run program itself, for details.              *
  8.  *              Support is available for a fee.                      *
  9.  ***************************************************************************
  10.  *
  11.  * Program:     gfft--General FFT analysis
  12.  * File:        errcodes.h
  13.  * Purpose:     console message symbols
  14.  * Author:      Charles Peterson (CPP)
  15.  * History:     3-August-1993 CPP; Created.
  16.  * Comments:    Once again, there is a little cheating here.  Add one error
  17.  *                code, and only messages.c and the code(s) using the new
  18.  *                error code need be recompiled.  BUT, IF YOU CHANGE AN
  19.  *                ERROR CODE, BE SURE TO TOUCH gfft.h TO RECOMPILE
  20.  *                EVERYTHING!
  21.  */
  22.  
  23. #ifndef ERRCODES_H
  24. #define ERRCODES_H
  25.  
  26. #define NO_SUCH_COMMAND     30
  27. #define OUT_OF_MEMORY         31
  28. #define UNSUPPORTED_COMMAND     32
  29. #define MISSING_ARGUMENT        33
  30. #define BAD_ARGUMENT            34
  31. #define BAD_NAME                35
  32. #define AMBIGUOUS_COMMAND       36
  33. #define BACKUP_CREATED          37
  34. #define OUTPUT_BACKUP_FAILURE   38
  35. #define CANT_CREATE_OUTPUT_FILE 39
  36. #define BACKUP_OVERWRITTEN      40
  37. #define CANT_OPEN_INPUT_FILE    41
  38. #define SCANNING_FILE           42
  39. #define NO_DATA_PRESENT         43
  40. #define PADDING_TAILEND         44
  41. #define AMBIGUOUS_ARGUMENT      45
  42. #define NO_SUCH_ARGUMENT        46
  43. #define NO_NUMERICAL            47
  44. #define INVALID_NUMBER          48
  45. #define TERMINAL_INPUT          49
  46. #define TERMINAL_OUTPUT         50
  47. #define IGNORING_TAILEND        51
  48. #define INSUFFICIENT_DATA       52
  49. #define FILENAME_TOO_LONG       53
  50. #define NO_RATE_SPECIFIED       54
  51. #define NO_READ_FILE            55
  52. #define FILE_FORMAT_IGNORED     56
  53. #define UNSUPPORTED_FORMAT      57
  54. #define CORRUPT_IFF             58
  55. #define COMPRESSION_NOT_SUPPORTED 59
  56. #define ONESHOT_BUT_NOT_8SVX    60
  57. #define FORMAT_NOT_OK           61
  58. #define NOT_ENOUGH_FRAMES       62
  59. #define OCTAVE_NOT_PRESENT      63
  60. #define CORRUPT_AIFF            64
  61. #define CORRUPT_AIFC            65
  62. #define NO_WRITE_FILE           66
  63. #define DB_OF_ZERO              67
  64. #define CANT_CREATE_PLOTTER_FILE 68
  65. #define NO_FILE_REQSTR          69
  66. #define SPEC_CHANNEL_UNAVAIL    70
  67. #define INVALID_BINS_SPEC       71
  68. #define INVALID_INTERLEAVE_SPEC 72
  69. #define CANT_OPEN_INTUITION     73
  70. #define INVALID_SMOOTHING_SPEC  74
  71. #define INVALID_TIMESEG_PARAMETERS 75
  72. #define MISSING_TIMESEG_PARAMETERS 76
  73. #define CANT_CREATE_MORE_COMMAND_FILE 77
  74. #define CANT_CREATE_MESSAGE_FILE 78
  75. #define HELP_MESSAGE_UNAVAILABLE 79
  76. #define HELP_FILE_NOT_FOUND 80
  77. #define CANT_PLOT_FROM_STDOUT 81
  78. #define CANT_RE_OUTPUT 82
  79. #define CANT_RE_PLOT 83
  80. #define INVALID_ROTATION_SPEC 84
  81. #define CHANGED_FORMAT_DEP_VALUE 85
  82. #define INVALID_CALIBRATION_FILE 86
  83. #define CORRUPT_AVR              87
  84. #define STARTUP_FILE_ERROR       88
  85. #define CANT_CLEANUP_BATCH_PLOT  89
  86. #define ALREADY_IN_CLI_MODE      90
  87. #define TOOLTYPE_ERROR           91
  88. #define WINDOW_OPEN_FAILED       92
  89. #define REQUESTER_STACK_OVERFLOW 93
  90.  
  91. #endif /* ifndef ERRCODES_H */
  92.